projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
46d863f
)
Fix capitalisation of on-wire calls for VM.set_platform_std_VGA and
author
Ewan Mellor
<ewan@xensource.com>
Fri, 8 Dec 2006 11:13:44 +0000
(11:13 +0000)
committer
Ewan Mellor
<ewan@xensource.com>
Fri, 8 Dec 2006 11:13:44 +0000
(11:13 +0000)
VM.set_otherConfig.
Signed-off-by: Ewan Mellor <ewan@xensource.com>
tools/libxen/src/xen_vm.c
patch
|
blob
|
history
diff --git
a/tools/libxen/src/xen_vm.c
b/tools/libxen/src/xen_vm.c
index e6c95fc12e5c9c6b758fafdd2b8e05912f6c5722..22ba6cc266bb110eac5057b15129991b20f6df41 100644
(file)
--- a/
tools/libxen/src/xen_vm.c
+++ b/
tools/libxen/src/xen_vm.c
@@
-1303,7
+1303,7
@@
xen_vm_set_platform_std_vga(xen_session *session, xen_vm vm, bool std_vga)
.u.bool_val = std_vga }
};
- xen_call_(session, "VM.set_platform_std_
vga
", param_values, 2, NULL, NULL);
+ xen_call_(session, "VM.set_platform_std_
VGA
", param_values, 2, NULL, NULL);
return session->ok;
}
@@
-1479,7
+1479,7
@@
xen_vm_set_otherconfig(xen_session *session, xen_vm vm, xen_string_string_map *o
.u.set_val = (arbitrary_set *)otherconfig }
};
- xen_call_(session, "VM.set_other
c
onfig", param_values, 2, NULL, NULL);
+ xen_call_(session, "VM.set_other
C
onfig", param_values, 2, NULL, NULL);
return session->ok;
}